<body>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script>
(function ($) {
var data = {
'name': "name",
'descr': "descr"
};
$.get('/mypath/', {
'data[]': data
}, function (result) {
}, 'json');
})(jQuery);
</script>
</body>
А ведь работает

И так работает
<body>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script>
(function ($) {
var data = {
name: "name",
descr: "descr"
};
$.get('/mypath/', {
data: data
}, function (result) {
}, 'json');
})(jQuery);
</script>
</body>